home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v8n15.arc / DCOPY.BAT < prev    next >
DOS Batch File  |  1989-08-31  |  931b  |  36 lines

  1.  
  2.  
  3. ------------------------- DCOPY.BAT --------------------------
  4. REM  This batch file is used to move .DOC files from the main
  5. REM  word processing directory to sub-directories named JAN -
  6. REM  DEC. It should be called from the main word processing
  7. REM  directory. After checking to see that everything copied
  8. REM  correctly the source files should be deleted manually.
  9. ECHO OFF
  10. ATTRIB +A *.DOC
  11. MD JAN
  12. MD FEB
  13. MD MAR
  14. MD APR
  15. MD MAY
  16. MD JUN
  17. MD JUL
  18. MD AUG
  19. MD SEP
  20. MD OCT
  21. MD NOV
  22. MD DEC
  23. XCOPY *.DOC \DEC /D:12-01-1988 /M
  24. XCOPY *.DOC \NOV /D:11-01-1988 /M
  25. XCOPY *.DOC \OCT /D:10-01-1988 /M
  26. XCOPY *.DOC \SEP /D:09-01-1988 /M
  27. XCOPY *.DOC \AUG /D:08-01-1988 /M
  28. XCOPY *.DOC \JUL /D:07-01-1988 /M
  29. XCOPY *.DOC \JUN /D:06-01-1988 /M
  30. XCOPY *.DOC \MAY /D:05-01-1988 /M
  31. XCOPY *.DOC \APR /D:04-01-1988 /M
  32. XCOPY *.DOC \MAR /D:03-01-1988 /M
  33. XCOPY *.DOC \FEB /D:02-01-1988 /M
  34. XCOPY *.DOC \JAN /D:01-01-1988 /M
  35. ECHO ON
  36.